home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
-
-
- # Administrator Username/Password
- $adminusername = 'admin';
- $adminpassword = 'bug';
- $adminemailaddress = 'Webmaster@amiganorththames.co.uk';
- $adminrealname = 'Mike Woods';
-
- # Site Variables
- $sitename = "";
-
- # Output variables
-
- # Output type
- # This defines how the output will look (ie. the format)
- # This variable does NOT define the colours, simply the layout
- # Placed in $outputtype='detailed'; mode the script outputs the info
- # as a table with all details about the poster including, their nickname
- # which is hyperlinked to the email address, the date of the post, name of
- # the post and finally the post contents.
-
- # Any other value for $outputtype='plain' (set to $outputtype='plain'; for clarities sake)
- # will result in the other format available which simply prints the date followed by a <br> and
- # the actual post contents.
-
- $outputtype='detailed';
-
- ####
- # Colour Settings
-
- # Hex value of the title text colour
- $titletextcolour='#000000';
- # Hex value of the message text colour
- $messagetextcolour='#000000';
- # HTML value of the alignment of each message, can be set to either
- # center, left or right.
- $messagealignment='center';
-
- # Defines the thickness in pixels of the table borders.
- $border='1';
-
-
-
-
- # End of CONFIG file.
-
- 1;
-
-